Platform Explorer / Nuxeo Platform 2023.9

Component org.nuxeo.ecm.core.storage.dbs.bulk.config

Requirements

Resolution Order

830
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<?xml version="1.0"?>
<component name="org.nuxeo.ecm.core.storage.dbs.bulk.config" version="1.0.0">

  <require>org.nuxeo.runtime.stream.service</require>

  <!-- ======================================================================================= -->
  <!-- Actions configuration -->

  <extension target="org.nuxeo.ecm.core.bulk" point="actions">
    <!-- Internal -->
    <action name="updateReadAcls" inputStream="bulk/updateReadAcls" bucketSize="100" batchSize="25" sequentialScroll="true" />
  </extension>

  <!-- Action's processor -->
  <extension target="org.nuxeo.runtime.stream.service" point="streamProcessor">
    <!-- Update Read ACLs processor -->
    <streamProcessor name="updateReadAcls" class="org.nuxeo.ecm.core.storage.dbs.action.UpdateReadAclsAction"
      defaultConcurrency="${nuxeo.bulk.action.updateReadAcls.defaultConcurrency:=1}"
      defaultPartitions="${nuxeo.bulk.action.updateReadAcls.defaultPartitions:=1}">
      <policy name="default" maxRetries="3" delay="500ms" maxDelay="10s" continueOnFailure="false" />
    </streamProcessor>

  </extension>

</component>